[profile.dev]
opt-level = 0 # Controls the --opt-level the compiler builds with
debug = true # Controls whether the compiler passes -g or `--cfg ndebug`
-rpath = true # Controls whether the compiler passes `-C rpath`
+rpath = false # Controls whether the compiler passes `-C rpath`
# The release profile, used for `cargo build --release`
[profile.release]
[profile.test]
opt-level = 0
debug = true
-rpath = true
+rpath = false
# The benchmarking profile, used for `cargo bench`
[profile.bench]
[profile.doc]
opt-level = 0
debug = true
+rpath = false
```
# The `[features]` Section